home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / antvirus / xtrudr21.lha / Xtruder / Install_Libs < prev    next >
Text File  |  1995-10-07  |  2KB  |  93 lines

  1. ; *******************************************************************
  2. ;
  3. ; $VER: Install-Libs for Xtruder (7.10.95)
  4. ; Install script for libs Xtruder copyright © 1995 Martin Wulffeld
  5. ;
  6. ; *******************************************************************
  7.  
  8. (set old_level @user-level)
  9. (set @default-dest "")
  10.  
  11. (set default_lang 4)
  12.  
  13. (set #bad-kick
  14. (cat "You must at least have Kickstart 2.04 to install Xtruder!"
  15. ))
  16.  
  17. (set #copying-bootblock        "Copying Bootblock.library 3.1 to LIBS:...")
  18. (set #copying-bootblockbb    "Copying Bootblock.brainfile to L:...")
  19. (set #copying-fileid        "Copying FileID.library 7.0 to LIBS:...")
  20. (set #copying-filevirus        "Copying filevirus.library 2.2 to LIBS:...")
  21. (set #copying-reqtoools        "Copying reqtools.library 38.1266 to LIBS:...")
  22. (set #copying-unpack        "Copying unpack.library 41.60 to LIBS:...")
  23. (set #copying-xtruderlib    "Copying xtruder.library 37.1 to LIBS:...")
  24.  
  25. ;=============================================================================
  26. ; Make sure we are running under a 2.04 ROM
  27.  
  28. (if (< (/ (getversion) 65536) 37)
  29. (
  30.     (abort #bad-kick)
  31. ))
  32.  
  33. ;=============================================================================
  34.  
  35. ;*** Required libraries
  36.  
  37. (copylib
  38.     (prompt "\n" #copying-bootblock)
  39.     (help @copylib-help)
  40.     (source "Libs/Bootblock.library")
  41.     (dest "LIBS:")
  42.     (confirm)
  43. )
  44.  
  45. (copylib
  46.     (prompt "\n" #copying-bootblockbb)
  47.     (help @copylib-help)
  48.     (source "L/Bootblock.brainfile")
  49.     (dest "L:")
  50.     (confirm)
  51. )
  52.  
  53. (copylib
  54.     (prompt "\n" #copying-fileid)
  55.     (help @copylib-help)
  56.     (source "Libs/FileID.library")
  57.     (dest "LIBS:")
  58.     (confirm)
  59. )
  60.  
  61. (copylib
  62.     (prompt "\n" #copying-filevirus)
  63.     (help @copylib-help)
  64.     (source "Libs/filevirus.library")
  65.     (dest "LIBS:")
  66.     (confirm)
  67. )
  68.  
  69. (copylib
  70.     (prompt "\n" #copying-reqtools)
  71.     (help @copylib-help)
  72.     (source "Libs/reqtools.library")
  73.     (dest "LIBS:")
  74.     (confirm)
  75. )
  76.  
  77. (copylib
  78.     (prompt "\n" #copying-unpack)
  79.     (help @copylib-help)
  80.     (source "Libs/unpack.library")
  81.     (dest "LIBS:")
  82.     (confirm)
  83. )
  84.  
  85. (copylib
  86.     (prompt "\n" #copying-xtruderlib)
  87.     (help @copylib-help)
  88.     (source "Libs/xtruder.library")
  89.     (dest "LIBS:")
  90.     (confirm)
  91. )
  92.